Processing math: 100%

HL Paper 3

Consider the recurrence relation aun+2+bun+1+cun=0, nN where a, b and c are constants. Let α and β denote the roots of the equation ax2+bx+c=0.

Verify that the recurrence relation is satisfied by

un=Aαn+Bβn,

where A and B are arbitrary constants.

[4]
a.

Solve the recurrence relation

un+22un+1+5un=0 given that u0=0 and u1=4.

[9]
b.



Show that gcd(4k+2,3k+1)=gcd(k1,2), where kZ+,k>1.

[4]
a.

State the value of gcd(4k+2,3k+1) for odd positive integers k.

[1]
b.i.

State the value of gcd(4k+2,3k+1) for even positive integers k.

[1]
b.ii.



The weights of the edges in the complete graph G are given in the following table.

M17/5/MATHL/HP3/ENG/TZ0/DM/02

Starting at A , use the nearest neighbour algorithm to find an upper bound for the travelling salesman problem for G.

[5]
a.

By first deleting vertex A , use the deleted vertex algorithm together with Kruskal’s algorithm to find a lower bound for the travelling salesman problem for G.

[7]
b.



Mathilde delivers books to five libraries, A, B, C, D and E. She starts her deliveries at library D and travels to each of the other libraries once, before returning to library D. Mathilde wishes to keep her travelling distance to a minimum.

The weighted graph H, representing the distances, measured in kilometres, between the five libraries, has the following table.

N17/5/MATHL/HP3/ENG/TZ0/DM/01

Draw the weighted graph H.

[2]
a.

Starting at library D use the nearest-neighbour algorithm, to find an upper bound for Mathilde’s minimum travelling distance. Indicate clearly the order in which the edges are selected.

[5]
b.

By first removing library C, use the deleted vertex algorithm, to find a lower bound for Mathilde’s minimum travelling distance.

[4]
c.



A recurrence relation is given by un+1+2un+1=0, u1=4.

Use the recurrence relation to find u2.

[1]
a.

Find an expression for un in terms of n.

[6]
b.

A second recurrence relation, where v1=u1 and v2=u2, is given by vn+1+2vn+vn1=0, n2.

Find an expression for vn in terms of n.

[6]
c.



Consider κn, a complete graph with n vertices, n2. Let T be a fixed spanning tree of κn.

Draw the complete bipartite graph κ3,3.

[1]
a.i.

Prove that κ3,3 is not planar.

[4]
a.ii.

A connected graph G has v vertices. Prove, using Euler’s relation, that a spanning tree for G has v1 edges.

[2]
b.

If an edge E is chosen at random from the edges of κn, show that the probability that E belongs to T is equal to 2n.

[4]
c.



The simple, complete graph κn(n>2) has vertices A1, A2, A3, , An. The weight of the edge from Ai to Aj is given by the number i+j.

Consider the general graph κn.

(i)     Draw the graph κ4 including the weights of all the edges.

(ii)     Use the nearest-neighbour algorithm, starting at vertex A1, to find a Hamiltonian cycle.

(iii)     Hence, find an upper bound to the travelling salesman problem for this weighted graph.

[4]
a.

Consider the graph κ5. Use the deleted vertex algorithm, with A5 as the deleted vertex, to find a lower bound to the travelling salesman problem for this weighted graph.

[5]
b.

(i)     Use the nearest-neighbour algorithm, starting at vertex A1, to find a Hamiltonian cycle.

(ii)    Hence find and simplify an expression in n, for an upper bound to the travelling salesman problem for this weighted graph.

[7]
c.

By splitting the weight of the edge AiAj into two parts or otherwise, show that all Hamiltonian cycles of κn have the same total weight, equal to the answer found in (c)(ii).

[3]
d.



In this question the notation (anan1a2a1a0)b is used to represent a number in base b, that has unit digit of a0. For example (2234)5 represents 2×53+2×52+3×5+4=319 and it has a unit digit of 4.

Let x be the cube root of the base 7 number (503231)7.

(i)     By converting the base 7 number to base 10, find the value of x, in base 10.

(ii)     Express x as a base 5 number.

[7]
a.

Let y be the base 9 number (anan1a1a0)9. Show that y is exactly divisible by 8 if and only if the sum of its digits, ni=0ai, is also exactly divisible by 8.

[7]
b.

Using the method from part (b), find the unit digit when the base 9 number (321321321)9 is written as a base 8 number.

[3]
c.



Consider the system of linear congruences

x2(mod5)x5(mod8)x1(mod3).

With reference to the integers 5, 8 and 3, state why the Chinese remainder theorem guarantees a unique solution modulo 120 to this system of linear congruences.

[2]
a.

Hence or otherwise, find the general solution to the above system of linear congruences.

[7]
b.



In this question no graphs are required to be drawn. Use the handshaking lemma and other results about graphs to explain why,

a graph cannot exist with a degree sequence of 1, 2, 3, 4, 5, 6, 7, 8, 9;

[2]
a.

a simple, connected, planar graph cannot exist with a degree sequence of 4, 4, 4, 4, 5, 5;

[3]
b.

a tree cannot exist with a degree sequence of 1, 1, 2, 2, 3, 3.

[3]
c.



The distances by road, in kilometres, between towns in Switzerland are shown in the following table.

A cable television company wishes to connect the six towns placing cables along the road system.

Use Kruskal’s algorithm to find the minimum length of cable needed to connect the six towns.

[5]
a.

Visitors to Switzerland can visit some principal locations for tourism by using a network of scenic railways as represented by the following graph:

(i)     State whether the graph has any Hamiltonian paths or Hamiltonian cycles, justifying your answers.

(ii)     State whether the graph has any Eulerian trails or Eulerian circuits, justifying your answers.

(iii)     The tourist board would like to make it possible to arrive in Geneva, travel all the available scenic railways, exactly once, and depart from Zurich. Find which locations would need to be connected by a further scenic railway in order to make this possible.

[6]
b.



In a computer game, Fibi, a magic dragon, is climbing a very large staircase. The steps are labelled 0, 1, 2, 3 … .

She starts on step 0. If Fibi is on a particular step then she can either jump up one step or fly up two steps. Let un represent the number of different ways that Fibi can get to step n. When counting the number of different ways, the order of Fibi’s moves matters, for example jump, fly, jump is considered different to jump, jump, fly. Let u0=1.

Find the values of u1, u2, u3.

[3]
a.

Show that un+2=un+1+un.

[2]
b.

(i)     Write down the auxiliary equation for this recurrence relation.

(ii)     Hence find the solution to this recurrence relation, giving your answer in the form un=Aαn+Bβn where α and β are to be determined exactly in surd form and α>β. The constants A and B do not have to be found at this stage.

[5]
c.

(i)     Given that A=15(1+52), use the value of u0 to determine B.

(ii)     Hence find the explicit formula for un.

[3]
d.

Find the value of u20.

[1]
e.

Find the smallest value of n for which un>100000.

[2]
f.



Use the result 2003=6×333+5 and Fermat’s little theorem to show that 220034(mod7) .

[3]
a.

Find 22003(mod11) and 22003(mod13).

[3]
b.

Use the Chinese remainder theorem, or otherwise, to evaluate 22003(mod1001), noting that 1001=7×11×13.

[7]
c.



Let the greatest common divisor of 861 and 957 be h .

Using the Euclidean algorithm, find h .

[4]
a.

Hence find integers A and B such that 861+ 957B = h .

[3]
b.

Using part (b), solve 287w2(mod319) , where wN, w<319 .

[5]
c.

Find the general solution to the diophantine equation 861x+957y=6 .

[6]
d.



Consider the following weighted graph G.

State what feature of G ensures that G has an Eulerian trail.

[1]
a.i.

State what feature of G ensures that G does not have an Eulerian circuit.

[1]
a.ii.

Write down an Eulerian trail in G.

[2]
b.

State the Chinese postman problem.

[2]
c.i.

Starting and finishing at B, find a solution to the Chinese postman problem for G.

[3]
c.ii.

Calculate the total weight of the solution.

[1]
c.iii.



The simple, connected graph G has e edges and v vertices, where v3.

Given that both G and G are planar and connected,

Show that the number of edges in G, the complement of G, is 12v212ve.

[2]
a.

show that the sum of the number of faces in G and the number of faces in G is independent of e;

[3]
b.

show that v213v+240 and hence determine the maximum possible value of v.

[7]
c.



The Fibonacci sequence can be described by the recurrence relation fn+2=fn+1+fn where f0=0,f1=1.

Write down the auxiliary equation and use it to find an expression for fn in terms of n.

[7]
a.

It is known that α2=α+1 where α=1+52.

For integers n ≥ 3, use strong induction on the recurrence relation fn+2=fn+1+fn to prove that fn>αn2.

[8]
b.



Use the Euclidean Algorithm to find the greatest common divisor of 7854 and 3315.

Hence state the number of solutions to the diophantine equation 7854x + 3315y = 41 and justify your answer.




Consider the recurrence relation

un=5un16un2, u0=0 and u1=1.

Find an expression for un in terms of n.

[6]
a.

For every prime number p>3, show that p|up1.

[4]
b.



The decimal number 1071 is equal to a060 in base b, where a>0.

Convert the decimal number 1071 to base 12.

[3]
a.

Write the decimal number 1071 as a product of its prime factors.

[1]
b.

Using your answers to part (a) and (b), prove that there is only one possible value for b and state this value.

[4]
c.i.

Hence state the value of a.

[1]
c.ii.



Use the Euclidean algorithm to find the greatest common divisor of 264 and 1365.

[5]
a.

Hence, or otherwise, find the general solution of the Diophantine equation

264x1365y=3.

[6]
b.i.

Hence find the general solution of the Diophantine equation

264x1365y=6.

[2]
b.ii.

By expressing each of 264 and 1365 as a product of its prime factors, determine the lowest common multiple of 264 and 1365.

[3]
c.



Prove that a graph containing a triangle cannot be bipartite.

[3]
b.

Prove that the number of edges in a bipartite graph with n vertices is less than or equal to n24.

[5]
c.



The positive integer N is expressed in base p as (anan1a1a0)p .

Show that when p = 2 , N is even if and only if its least significant digit, a0 , is 0.

[5]
a.

Show that when p = 3 , N is even if and only if the sum of its digits is even.

[6]
b.



Given a sequence of non negative integers {ar} show that

(i)     nr=0ar(x+1)r(modx)=nr=0ar(modx) where x{2, 3, 4}.

(ii)     nr=0(3a2r+1+a2r)9r=2n+1r=0ar3r.

[5]
a.

Hence determine whether the base 3 number 22010112200201 is divisible by 8.

[5]
b.



Consider the linear congruence axb(modp) where a,b,p,xZ+p is prime and a is not a multiple of p.

State Fermat’s little theorem.

[2]
a.

Use Fermat’s little theorem to show that xap2b(modp).

[3]
b.i.

Hence solve the linear congruence 5x7(mod13).

[3]
b.ii.



The following diagram shows the graph G.

Show that G is bipartite.

[2]
a.

State which two vertices should be joined to make G equivalent to K3, 3.

[1]
b.

In a planar graph the degree of a face is defined as the number of edges adjacent to that face.

(i)     Write down the degree of each of the four faces of G.

(ii)     Explain why the sum of the degrees of all the faces is twice the number of edges.

[2]
c.

H is a simple connected planar bipartite graph with e edges, f faces, v vertices and v3.

Explain why there can be no face in H of degree

(i)     one;

(ii)     two;

(iii)     three.

[3]
d.

Hence prove that for H

(i)     e2f;

(ii)     e2v4.

[3]
e.

Hence prove that K3, 3 is not planar.

[2]
f.



Use the Euclidean algorithm to express gcd (123, 2347) in the form 123p + 2347q, where p, qZ.

[8]
a.

Find the least positive solution of 123x1(mod2347) .

[3]
b.

Find the general solution of 123z5(mod2347) .

[3]
c.

State the solution set of 123y1(mod2346) .

[1]
d.



The planar graph G and its complement G are both simple and connected.

Given that G has 6 vertices and 10 edges, show that G is a tree.




The graph K2, 2 is the complete bipartite graph whose vertex set is the disjoint union of two subsets each of order two.

Draw K2, 2 as a planar graph.

[2]
a.

Draw a spanning tree for K2, 2.

[1]
b.

Draw the graph of the complement of K2, 2.

[1]
c.

Show that the complement of any complete bipartite graph does not possess a spanning tree.

[3]
d.



Throughout this question, (abc)n denotes the number abc written with number base n. For example (359)n=3n2+5n+9.

(i)     Given that (43)n×(56)n=(3112)n, show that 3n319n238n16=0.

(ii)     Hence determine the value of n.

[3]
a.

Determine the set of values of n satisfying (13)n×(21)n=(273)n.

[3]
b.

Show that there are no possible values of n satisfying (32)n×(61)n=(1839)n.

[4]
c.



Solve the recurrence relation vn+4vn1+4vn2=0 where v1=0, v2=1.

[6]
a.

Use strong induction to prove that the solution to the recurrence relation un4un1+4un2=0 where u1=0, u2=1 is given by un=2n2(n1).

[8]
b.

Find a simplified expression for un+vn given that,

(i)     n is even.

(ii)     n is odd.

[3]
c.



Use the Euclidean algorithm to show that 1463 and 389 are relatively prime.

[4]
a.

Find positive integers a and b such that 1463a389b=1.

[5]
b.



In the context of graph theory, explain briefly what is meant by a circuit;

[1]
a.i.

In the context of graph theory, explain briefly what is meant by an Eulerian circuit.

[1]
a.ii.

The graph G has six vertices and an Eulerian circuit. Determine whether or not its complement G can have an Eulerian circuit.

[3]
b.

Find an example of a graph H, with five vertices, such that H and its complement H both have an Eulerian trail but neither has an Eulerian circuit. Draw H and H as your solution.

[4]
c.



When numbers are written in base n, 332=1331.

By writing down an appropriate polynomial equation, determine the value of n.

[4]
a.

Rewrite the above equation with numbers in base 7.

[6]
b.



Let f(n)=n5n, nZ+.

Find the values of f(3), f(4) and f(5).

[2]
a.

Use the Euclidean algorithm to find

(i)     gcd(f(3), f(4));

(ii)     gcd(f(4), f(5)).

[4]
b.

Explain why f(n) is always exactly divisible by 5.

[1]
c.

By factorizing f(n) explain why it is always exactly divisible by 6.

[4]
d.

Determine the values of n for which f(n) is exactly divisible by 60.

[3]
e.



(i)     One version of Fermat’s little theorem states that, under certain conditions,

ap11(modp).

Show that this result is not valid when a = 4, p = 9 and state which

condition is not satisfied.

(ii)     Given that 564n(mod7), where 0n6, find the value of n.

[8]
a.

Find the general solution to the simultaneous congruences

x3(mod4)

3x2(mod5).

[6]
b.



(a)     (i)     Write down the general solution of the recurrence relation un+2un1=0, n1.

          (ii)     Find a particular solution of the recurrence relation un+2un1=3n2, n1, in the

          form un=An+B, where A, BZ.

          (iii)     Hence, find the solution to un+2un1=3n2, n1 where u1=7.

(b)     Find the solution of the recurrence relation un=2un12un2, n2, where u0=2, u1=2. Express your solution in the form 2f(n)cos(g(n)π), where the functions f and g map N to R.




A version of Fermat’s little theorem states that when p is prime, a is a positive integer and a and p are relatively prime, then ap11(modp).

Use the above result to show that if p is prime then apa(modp) where a is any positive integer.

[4]
a.

Show that 23412(mod341).

[7]
b.

(i)     State the converse of the result in part (a).

(ii)     Show that this converse is not true.

[2]
c.



The weighted graph K, representing the travelling costs between five customers, has the following adjacency table.


Draw the graph K.

[2]
a.

Starting from customer D, use the nearest-neighbour algorithm, to determine an upper bound to the travelling salesman problem for K.

[4]
b.

By removing customer A, use the method of vertex deletion, to determine a lower bound to the travelling salesman problem for K.

[4]
c.



(i)     Given that ad(modn) and bc(modn) prove that

(a+b)(c+d)(modn) .

(ii)     Hence solve the system

{2x+5y1(mod6)x+y5(mod6)

[11]
a.

Show that x97x+10(mod97) has no solution.

[3]
b.



The sequence {un}, nN, satisfies the recurrence relation un+1=7un6.

Given that u0=5, find an expression for un in terms of n.

[5]
a.

The sequence {vn}, nN, satisfies the recurrence relation vn+2=10vn+1+11vn.

Given that v0=4 and v1=44, find an expression for vn in terms of n.

[7]
b.

The sequence {vn}, nN, satisfies the recurrence relation vn+2=10vn+1+11vn.

Show that vnun15(mod16), nN.

[4]
c.



The diagram shows a weighted graph with vertices A, B, C, D, E, F, G. The weight of each edge is marked on the diagram.

 


(i)     Explain briefly why the graph contains an Eulerian trail but not an Eulerian circuit.

(ii)     Write down an Eulerian trail.

[4]
a.

(i)     Use Dijkstra’s algorithm to find the path of minimum total weight joining A to D.

(ii)     State the minimum total weight.

[8]
b.



(a)     Use the Euclidean algorithm to find gcd(12306, 2976) .

(b)     Hence give the general solution to the diophantine equation 12306x + 2976y = 996 .




Use the Euclidean algorithm to find the greatest common divisor of the numbers 56 and 315.

[4]
a.

(i)     Find the general solution to the diophantine equation 56x+315y=21.

(ii)     Hence or otherwise find the smallest positive solution to the congruence 315x21 (modulo 56) .

[9]
b.



Given that a , bN and cZ+, show that if a1(modc) , then abb(modc) .

[2]
a.

Using mathematical induction, show that 9n1(mod4) , for nN .

[6]
b.

The positive integer M is expressed in base 9. Show that M is divisible by 4 if the sum of its digits is divisible by 4.

[4]
c.



Two mathematicians are planning their wedding celebration and are trying to arrange the seating plan for the guests. The only restriction is that all tables must seat the same number of guests and each table must have more than one guest. There are fewer than 350 guests, but they have forgotten the exact number. However they remember that when they try to seat them with two at each table there is one guest left over. The same happens with tables of 3, 4, 5 and 6 guests. When there were 7 guests per table there were none left over. Find the number of guests.




Show that a positive integer, written in base 10, is divisible by 9 if the sum of its digits is divisible by 9.

[7]
a.

The representation of the positive integer N in base p is denoted by (N)p .

If (5(126)7)7=(anan1a1a0)7 , find a0 .

[9]
b.



The positive integer N is expressed in base 9 as (anan1a0)9.

(a)     Show that N is divisible by 3 if the least significant digit, a0, is divisible by 3.

(b)     Show that N is divisible by 2 if the sum of its digits is even.

(c)     Without using a conversion to base 10, determine whether or not (464860583)9 is divisible by 12.




Explaining your method fully, determine whether or not 1189 is a prime number.

[4]
a.

(i)     State the fundamental theorem of arithmetic.

(ii)     The positive integers M and N have greatest common divisor G and least common multiple L . Show that GL = MN .

[6]
b.



Andy and Roger are playing tennis with the rule that if one of them wins a game when serving then he carries on serving, and if he loses then the other player takes over the serve.

The probability Andy wins a game when serving is 12 and the probability he wins a game when not serving is 14. Andy serves in the first game. Let un denote the probability that Andy wins the nth game.

State the value of u1.

[1]
a.

Show that un satisfies the recurrence relation

un=14un1+14.

[4]
b.

Solve this recurrence relation to find the probability that Andy wins the nth game.

[6]
c.

After they have played many games, Pat comes to watch. Use your answer from part (c) to estimate the probability that Andy will win the game they are playing when Pat arrives.

[2]
d.



Use the pigeon-hole principle to prove that for any simple graph that has two or more vertices and in which every vertex is connected to at least one other vertex, there must be at least two vertices with the same degree.

[4]
a.

Seventeen people attend a meeting.

Each person shakes hands with at least one other person and no-one shakes hands with

the same person more than once. Use the result from part (a) to show that there must be at least two people who shake hands with the same number of people.

[4]
b.

Explain why each person cannot have shaken hands with exactly nine other people.

[2]
c.



A graph has n vertices with degrees 1, 2, 3, …, n. Prove that n0(mod4) or n3(mod4).

[6]
a.

Let G be a simple graph with n vertices, n2. Prove, by contradiction, that at least two of the vertices of G must have the same degree.

[8]
b.



Use the Euclidean algorithm to find gcd(752, 352).

[4]
a.

A farmer spends £8128 buying cows of two different breeds, A and B, for her farm. A cow of breed A costs £752 and a cow of breed B costs £352.

(i)     Set up a diophantine equation to show this.

(ii)     Using your working from part (a), find the general solution to this equation.

(iii)     Hence find the number of cows of each breed bought by the farmer.

[10]
b.



The following diagram shows a weighted graph G with vertices A, B, C, D and E.


Show that graph G is Hamiltonian. Find the total number of Hamiltonian cycles in G, giving reasons for your answer.

[3]
a.

State an upper bound for the travelling salesman problem for graph G.

[1]
b.

Hence find a lower bound for the travelling salesman problem for G.

[2]
d.

Show that the lower bound found in (d) cannot be the length of an optimal solution for the travelling salesman problem for the graph G.

[3]
e.



Define what is meant by the statement xy(modn) where xynZ+ .

[1]
a.

Hence prove that if xy(modn) then x2y2(modn) .

[4]
b.

Determine whether or not x2y2(modn) implies that xy(modn) .

[4]
c.



Convert the decimal number 51966 to base 16.

[4]
a.

(i)     Using the Euclidean algorithm, find the greatest common divisor, d , of 901 and 612.

(ii)     Find integers p and q such that 901p + 612q = d .

(iii)     Find the least possible positive integers s and t such that 901s − 612t = 85.

[10]
b.

In each of the following cases find the solutions, if any, of the given linear congruence.

(i)     9x3(mod18)

(ii)     9x3(mod15)

[5]
c.



Given that a, b, c, dZ, show that

(ab)(ac)(ad)(bc)(bd)(cd)0(mod3).




The sequence {un} , nZ+ , satisfies the recurrence relation un+2=5un+16un .

Given that u1=u2=3 , obtain an expression for un in terms of n .

[6]
a.

The sequence {vn} , nZ+ , satisfies the recurrence relation vn+2=4vn+14vn .

Given that v1=2 and v2=12 , use the principle of strong mathematical induction to show that vn=2n(2n1) .

[8]
b.



State the Fundamental theorem of arithmetic for positive whole numbers greater than 1.

[2]
a.

Use the Fundamental theorem of arithmetic, applied to 5577 and 99099, to calculate gcd(5577, 99099) and lcm(5577, 99099), expressing each of your answers as a product of prime numbers.

[3]
b.

Prove that gcd(n, m)×lcm(n, m)=n×m for all n, mZ+.

[6]
c.



The following figure shows the floor plan of a museum.


 

(a)     (i)     Draw a graph G that represents the plan of the museum where each exhibition room is represented by a vertex labelled with the exhibition room number and each door between exhibition rooms is represented by an edge. Do not consider the entrance foyer as a museum exhibition room.

(ii)     Write down the degrees of the vertices that represent each exhibition room.

(iii)     Virginia enters the museum through the entrance foyer. Use your answers to (i) and (ii) to justify why it is possible for her to visit the thirteen exhibition rooms going through each internal doorway exactly once.

(b)     Let G and H be two graphs whose adjacency matrices are represented below.


 

Using the adjacency matrices,

(i)     find the number of edges of each graph;

(ii)     show that exactly one of the graphs has a Eulerian trail;

(iii)     show that neither of the graphs has a Eulerian circuit.




Show that 30 is a factor of n5n for all nN.

[5]
a.

(i)     Show that 33m3(mod4) for all mN.

(ii)     Hence show that there is exactly one pair (m, n) where m, nN, satisfying the equation 33m=22n+52.

[8]
b.



(a)     Draw a spanning tree for

          (i)     the complete graph, K4;

          (ii)     the complete bipartite graph, K4,4.

(b)     Prove that a simple connected graph with n vertices, where n>1, must have two vertices

of the same degree.

(c)     Prove that every simple connected graph has at least one spanning tree.




The weights of the edges in the complete graph G are shown in the following table.

M16/5/MATHL/HP3/ENG/TZ0/DM/02

Starting at A, use the nearest neighbour algorithm to find an upper bound for the travelling salesman problem for G.

[5]
a.

By first removing A , use the deleted vertex algorithm to find a lower bound for the travelling salesman problem for G.

[7]
b.



The following graph represents the cost in dollars of travelling by bus between 10 towns in a particular province.

Use Dijkstra’s algorithm to find the cheapest route between A and J, and state its cost.

[7]
a.

For the remainder of the question you may find the cheapest route between any two towns by inspection.

It is given that the total cost of travelling on all the roads without repeating any is $139.

A tourist decides to go over all the roads at least once, starting and finishing at town A.

Find the lowest possible cost of his journey, stating clearly which roads need to be travelled more than once. You must fully justify your answer.

[6]
b.



Use the Euclidean algorithm to find the greatest common divisor of 259 and 581.

[4]
a.

Hence, or otherwise, find the general solution to the diophantine equation 259x + 581y = 7 .

[5]
b.



An arithmetic sequence has first term 2 and common difference 4. Another arithmetic sequence has first term 7 and common difference 5. Find the set of all numbers which are members of both sequences.




Using the Euclidean algorithm, show that gcd(99, 332)=1.

[4]
a.

(i)     Find the general solution to the diophantine equation 332x99y=1.

(ii)     Hence, or otherwise, find the smallest positive integer satisfying the congruence 17z1(mod57).

[11]
b.



Solve, by any method, the following system of linear congruences

     x9(mod11)

     x1(mod5)

[3]
a.

Find the remainder when 4182 is divided by 11.

[4]
b.

Using your answers to parts (a) and (b) find the remainder when 4182 is divided by 55.

[3]
c.



Consider an integer a with (n+1) digits written as a=10nan+10n1an1++10a1+a0, where 0ai9 for 0in, and an0.

(a)     Show that a(an+an1++a0)(mod9).

(b)     Hence find all pairs of values of the single digits x and y such that the number a=476x212y is a multiple of 45.

(c)     (i)     If b=34390 in base 10, show that b is 52151 written in base 9.

(ii)     Hence find b2 in base 9, by performing all the calculations without changing base.




(a)     Find the general solution for the following system of congruences.

     N3(mod11)

     N4(mod9)

     N0(mod7)

(b)     Find all values of N such that 2000N4000.




Anna is playing with some cars and divides them into three sets of equal size. However, when she tries to divide them into five sets of equal size, there are four left over. Given that she has fewer than 50 cars, what are the possible numbers of cars she can have?




Consider the integers a=871 and b=1157, given in base 10.

(i)     Express a and b in base 13.

(ii)     Hence show that gcd(a, b)=13.

[7]
a.

A list L contains n+1 distinct positive integers. Prove that at least two members of Lleave the same remainder on division by n.

[4]
b.

Consider the simultaneous equations

     4x+y+5z=a

     2x+z=b

     3x+2y+4z=c

where x, y, zZ.

(i)     Show that 7 divides 2a+bc.

(ii)     Given that a = 3, b = 0 and c = −1, find the solution to the system of equations modulo 2.

[6]
c.

Consider the set P of numbers of the form n2n+41, nN.

(i)     Prove that all elements of P are odd.

(ii)     List the first six elements of P for n = 0, 1, 2, 3, 4, 5.

(iii)     Show that not all elements of P are prime.

[6]
d.



One version of Fermat’s little theorem states that, under certain conditions, ap11(modp) .

(i)     Show that this result is not true when a = 2, p = 9 and state which of the conditions is not satisfied.

(ii)     Find the smallest positive value of k satisfying the congruence 245k(mod9) .

[6]
a.

Find all the integers between 100 and 200 satisfying the simultaneous congruences 3x4(mod5) and 5x6(mod7) .

[6]
b.



A simple connected planar graph, has e edges, v vertices and f faces.

(i)     Show that 2e3f if v>2.

(ii)     Hence show that K5, the complete graph on five vertices, is not planar.

[6]
a.

(i)     State the handshaking lemma.

(ii)     Determine the value of f, if each vertex has degree 2.

[4]
b.

Draw an example of a simple connected planar graph on 6 vertices each of degree 3.

[2]
c.



The weights of the edges of a graph H are given in the following table.

(i)     Draw the weighted graph H.

(ii)     Use Kruskal’s algorithm to find the minimum spanning tree of H. Your solution should indicate the order in which the edges are added.

(iii)     State the weight of the minimum spanning tree.

[8]
a.

Consider the following weighted graph.

(i) Write down a solution to the Chinese postman problem for this graph.

(ii) Calculate the total weight of the solution.

[3]
b.

(i)     State the travelling salesman problem.

(ii)     Explain why there is no solution to the travelling salesman problem for this graph.

[3]
c.



Show that there are exactly two solutions to the equation 1982=36a+74b, with a, bN.

[8]
a.

Hence, or otherwise, find the remainder when 19821982 is divided by 37.

[5]
b.



(a)     Using Fermat’s little theorem, show that, in base 10, the last digit of n is always equal to the last digit of n5 .

(b)     Show that this result is also true in base 30.




Write 57128 as a product of primes.

[4]
a.

Prove that 22|511+1711.

[4]
c.



The diagram below shows the graph G with vertices A, B, C, D, E and F.

 

(i)     Determine if any Hamiltonian cycles exist in G . If so, write one down.

Otherwise, explain what feature of G makes it impossible for a Hamiltonian cycle to exist.

(ii)     Determine if any Eulerian circuits exist in G . If so, write one down.

Otherwise, explain what feature of G makes it impossible for an Eulerian circuit to exist.




The following diagram shows a weighted graph.


 

(a)     Use Kruskal’s algorithm to find a minimum spanning tree, clearly showing the order in which the edges are added.

(b)     Sketch the minimum spanning tree found, and write down its weight.




Let G be a simple, connected, planar graph. 

(a)     (i)     Show that Euler’s relation fe+v=2 is valid for a spanning tree of G.

  (ii)     By considering the effect of adding an edge on the values of  fe and v show that Euler’s relation remains true.

(b)     Show that K5 is not planar.




(a)     Write down Fermat’s little theorem.

(b)     In base 5 the representation of a natural number X is (k00013(5k))5.

This means that X=k×56+1×52+3×5+(5k).

In base 7 the representation of X is (anan1a2a1a0)7.

Find a0.

(c)     Given that k = 2, find X in base 7.




(a)     Show that, for a connected planar graph,

v+fe=2.

(b)     Assuming that v3, explain why, for a simple connected planar graph, 3f2e and hence deduce that e3v6.

(c)     The graph G and its complement G are simple connected graphs, each having 12 vertices. Show that G and G cannot both be planar.




State Fermat’s little theorem.




The positive integer p is an odd prime number.

Show that pk=1kp0(modp).

[4]
a.

Given that pk=1kp1n(modp) where 0np1, find the value of n.

[4]
b.



(a)     Use the Euclidean algorithm to find the gcd of 324 and 129.

(b)     Hence show that 324x+129y=12 has a solution and find both a particular solution and the general solution.

(c)     Show that there are no integers x and y such that 82x+140y=3 .

 



The weights of the edges of a graph G with vertices A, B, C, D and E are given in the following table.

 

Starting at A, use the nearest neighbour algorithm to find an upper bound for the travelling salesman problem for G .

[4]
a.

(i)     Use Kruskal’s algorithm to find and draw a minimum spanning tree for the subgraph obtained by removing the vertex A from G .

(ii)     Hence use the deleted vertex algorithm to find a lower bound for the travelling salesman problem for G .

[8]
b.



The graph G has adjacency matrix M given below.


Draw the graph G .

[2]
a.

What information about G is contained in the diagonal elements of M2 ?

[1]
b.

List the trails of length 4 starting at A and ending at C.

[3]
d.



Show that a graph is bipartite if and only if it contains only cycles of even length.




The weighted graph H is shown below.


 

Use Kruskal’s Algorithm, indicating the order in which the edges are added, to find and draw the minimum spanning tree for H.

[6]
a.

(i)     A tree has v vertices. State the number of edges in the tree, justifying your answer.

(ii)     We will call a graph with v vertices a “forest” if it consists of c components each of which is a tree. 

Here is an example of a forest with 4 components.

 

 

How many edges will a forest with v vertices and c components have?

[5]
b.



The graph G has the following cost adjacency table.

ABCDEA - 9 - 84B9 - 7 - 2C - 7 - 73D8 - 7 - 5E4235 - 

Draw G in a planar form.

[2]
a.

Giving a reason, determine the maximum number of edges that could be added to G while keeping the graph both simple and planar.

[4]
b.

List all the distinct Hamiltonian cycles in G beginning and ending at A, noting that two cycles each of which is the reverse of the other are to be regarded as identical. Hence determine the Hamiltonian cycle of least weight.

[10]
c.



The complete graph H has the following cost adjacency matrix.

 

 

Consider the travelling salesman problem for H .

By first finding a minimum spanning tree on the subgraph of H formed by deleting vertex A and all edges connected to A, find a lower bound for this problem.

[5]
a.

Find the total weight of the cycle ADCBEA.

[1]
b.

What do you conclude from your results?

[1]
c.



Sameer is trying to design a road system to connect six towns, A, B, C, D, E and F. The possible roads and the costs of building them are shown in the graph below. Each vertex represents a town, each edge represents a road and the weight of each edge is the cost of building that road. He needs to design the lowest cost road system that will connect the six towns.

 

(a)     Name an algorithm which will allow Sameer to find the lowest cost road system.

(b)     Find the lowest cost road system and state the cost of building it. Show clearly the steps of the algorithm.




Consider the complete bipartite graph κ3,3.

Draw κ3,3.

[1]
a.i.

Show that κ3,3 has a Hamiltonian cycle.

[1]
a.ii.

Draw κ3,2 and explain why it does not have a Hamiltonian cycle.

[2]
a.iii.

In the context of graph theory, state the handshaking lemma.

[1]
b.i.

Hence show that a graph G with degree sequence 2, 3, 3, 4, 4, 5 cannot exist.

[2]
b.ii.

Let T be a tree with v where v ≥ 2.

Use the handshaking lemma to prove that T has at least two vertices of degree one.

[4]
c.



Draw the complement of the following graph as a planar graph.


[3]
a.

A simple graph G has v vertices and e edges. The complement G of G has e edges.

(i)     Prove that e12v(v1) .

(ii)     Find an expression for e+e in terms of v .

(iii)     Given that G is isomorphic to G , prove that v is of the form 4n or 4n + 1 for nZ+ .

(iv)     Prove that there is a unique simple graph with 4 vertices which is isomorphic to its complement.

(v)     Prove that if v11 , then G and G cannot both be planar.

[14]
b.



(a)     A connected planar graph G has e edges and v vertices.

(i)     Prove that ev1.

(ii)     Prove that e = v −1 if and only if G is a tree.

(b)     A tree has k vertices of degree 1, two of degree 2, one of degree 3 and one of degree 4. Determine k and hence draw a tree that satisfies these conditions.

(c)     The graph H has the adjacency table given below.

(011000100110100011010000011000001000)

(i)     Explain why H cannot be a tree.

(ii)     Draw the graph of H .

(d)     Prove that a tree is a bipartite graph.




The diagram below shows the weighted graph G .


(a)     (i)     What feature of the graph enables you to deduce that G contains an Eulerian circuit?

  (ii)     Find an Eulerian circuit.

(c)     Use Kruskal’s Algorithm to find the minimum spanning tree for G , showing the order in which the edges are added.




The graph G has vertices P , Q , R , S , T and the following table shows the number of edges joining each pair of vertices.

 

Draw the graph G as a planar graph.

[2]
a.

Giving a reason, state whether or not G is

(i)     simple;

(ii)     connected;

(iii)     bipartite.

[4]
b.

Explain what feature of G enables you to state that it has an Eulerian trail and write down a trail.

[2]
c.

Explain what feature of G enables you to state it does not have an Eulerian circuit.

[1]
d.

Find the maximum number of edges that can be added to the graph G (not including any loops or further multiple edges) whilst still keeping it planar.

[4]
e.



(i)     A graph is simple, planar and connected. Write down the inequality connecting v and e, and give the condition on v for this inequality to hold.

(ii)     Sketch a simple, connected, planar graph with v = 2 where the inequality from part (b)(i) is not true.

(iii)     Sketch a simple, connected, planar graph with v =1 where the inequality from part (b)(i) is not true.

(iv)     Given a connected, planar graph with v vertices, v2 edges and 8 faces, find v. Sketch a graph that fulfils all of these conditions.




The table below shows the distances between towns A, B, C, D and E.

 

 

(i)     Draw the graph, in its planar form, that is represented by the table.

(ii)     Write down with reasons whether or not it is possible to find an Eulerian trail in this graph.

(iii)     Solve the Chinese postman problem with reference to this graph if A is to be the starting and finishing point. Write down the walk and determine the length of the walk.

[9]
a.

Show that a graph cannot have exactly one vertex of odd degree.

[2]
b.



A graph G with vertices A, B, C, D, E has the following cost adjacency table.

ABCDEA12101719B12132011C10131614D17201615E19111415

(a)     (i)     Use Kruskal’s algorithm to find and draw the minimum spanning tree for G.

  (ii)     The graph H is formed from G by removing the vertex D and all the edges connected to D. Draw the minimum spanning tree for H and use it to find a lower bound for the travelling salesman problem for G.

(b)     Show that 80 is an upper bound for this travelling salesman problem.




Use Kruskal’s algorithm to find the minimum spanning tree for the following weighted graph and state its length.


 

[5]
a.

Use Dijkstra’s algorithm to find the shortest path from A to D in the following weighted graph and state its length.

 

[7]
b.



The adjacency table of the graph G , with vertices P, Q, R, S, T is given by:

 

 

(a)     Draw the graph G .

(b)     (i)     Define an Eulerian circuit.

          (ii)     Write down an Eulerian circuit in G starting at P.

(c)     (i)     Define a Hamiltonian cycle.

         (ii)     Explain why it is not possible to have a Hamiltonian cycle in G .




In the graph given above, the numbers shown represent the distance along that edge.

Using Dijkstra’s algorithm, find the length of the shortest path from vertex S to vertex T . Write down this shortest path.

[6]
a.

(i)     Does this graph have an Eulerian circuit? Justify your answer.

(ii)     Does this graph have an Eulerian trail? Justify your answer.

[4]
b.

The graph above is now to be considered with the edges representing roads in a town and with the distances being the length of that road in kilometres. Huan is a postman and he has to travel along every road in the town to deliver letters to all the houses in that road. He has to start at the sorting office at S and also finish his route at S . Find the shortest total distance of such a route. Fully explain the reasoning behind your answer.

[4]
c.



Consider the following weighted graph.

 

 

(a)     (i)     Use Kruskal’s algorithm to find the minimum spanning tree. Indicate the order in which you select the edges and draw the final spanning tree.

  (ii)     Write down the total weight of this minimum spanning tree.

(b)     Sketch a spanning tree of maximum total weight and write down its weight.




The vertices of a graph L are A, B, C, D, E, F, G and H. The weights of the edges in L are given in the following table.

 

 

Draw the graph L.




In any graph, show that

(i)     the sum of the degrees of all the vertices is even;

(ii)     there is an even number of vertices of odd degree.

[5]
a.

Consider the following graph, M.

(i)     Show that M is planar.

(ii)     Explain why M is not Eulerian.

(iii)     By adding one edge to M it is possible to make it Eulerian. State which edge must be added.

This new graph is called N.

(iv)     Starting at A, write down a possible Eulerian circuit for N.

(v)     Define a Hamiltonian cycle. If possible, write down a Hamiltonian cycle for N, and if not possible, give a reason.

(vi)     Write down the adjacency matrix for N.

(vii)     Which pair of distinct vertices has exactly 30 walks of length 4 between them?

[12]
b.